how to change cursor on hover of button in tkinter

46

how to change cursor on hover of button in tkinter -

import tkinter as tk

root = tk.Tk()

# cursor="hand1" or cursor="hand2"
tk.Button(root, text="Start", cursor="hand2")

root.mainloop()

Comments

Submit
0 Comments